*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 
    text-decoration: none;
}
body{
    overflow:scroll;
}
.homepage{
height: 0;
width: 0;
padding: 0;
margin: 0;
}
.container{
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #222;
}
.wrapper{
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 auto;
}
header{
    padding: 40px 0 30px ;
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-wrap:wrap;
}
.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.logo i{
    height: 45px;
    width: 45px;
    background-color: #3453ffef;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    text-align: center;
    font-family:"font-effect-emboss";
}
.logo i {
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.logo i:hover {
    background-color: #fff;
    color: #007ced;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    font-size: 1.7rem;
    padding: 10px;
    transform: rotate(360deg);
    box-shadow: 0 0 5px #007ced,
                0 0 10px #007ced,
                0 0 20px #007ced,
                0 0 20px #007ced;
}

.logo .logo-text{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}
nav .togglebtn{
    width: 35px;
    height: 35px;
    position: absolute;
    top: 45px;
    right: 3%;
    cursor: pointer;
    z-index: 5;
    display: none;
}
nav .togglebtn span{
    display: block;
    background-color: #007ced;
    margin: 5px 0px ; 
    width: 100%; 
    height: 3px;
    transition: 0.3s; 
transition-property: transform,opacity;
}
nav .navlinks{
list-style-type: none;    
}
nav .navlinks li{
display: inline-block;
}
nav .navlinks li a{
    color: #fff;
    margin-right: 2.5rem;
}
 nav .navlinks li a:hover{
    padding: 0 20px;
    margin: 0 20px;
    background: #fff;
    color: #222;
    border-radius: 2px;
    transition: 0.6s;
} 

.container1{
display: flex;
justify-content: space-around;
align-items: center;
padding-top:  4rem;
}
.container1 .picture{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #444;
    box-shadow: 0 0 5px #fff ,
    0 0 5px #007ced,
    0 0 10px #fff,
    0 0 20px #007ced;
}
.picture img{
    height: 100%;
    width: 100%;
    transition: 0.5s ;
}
.picture img:hover{
    transform: scale(1.2);
   
    
}
.profile-text{
    max-width: 500px;
    display: flex;
    flex-direction: column;
}
.profile-text h5{
    color: #e5e5e5;
    font-size: 14px;
}
.profile-text h5 span{
    color: #007ced;
    font-size: 16px;
}
.profile-text h1{
    color: #007ced;
    font-size: 2.5rem;
}
.profile-text p{
    color: #e5e5e5;
}
.btn-group{
    margin: 45px 0;
}
.btn-group .btn{
border-color: #d5d5d5;
color: #fff;background-color: #333;
padding: 12px 25px;
margin: 5px 0;
border-radius: 30px;
border: 2px solid #e5e5e5;
box-shadow: 0 10px 10px -8px rgb(0 0 0 / 78%)
}
.btn.active{
    border-color: #007ced;
}
.btn-group .btn:hover{
    background-color: #fff;
    color: #222;
    font-size: 20px;
    padding: 12px 15px;
    transition: 0.5s;

}
.btn.active:hover{
    background-color: #fff;
    color: #222;
    transition: 0.5s;
    font-size: 20px;
    padding: 12px 25px;
}
.profile-text .social a{
    color: #222;
    font-size: 30px;
    margin: 10px;
    padding: 8px 10px;
    transition: 0.8s;
    border-radius: 50%;
    background-color: #fff;
}
.profile-text .social a:hover {
    color: #007ced;
    transform: rotate(360deg);
    box-shadow: 0 0 5px #007ced,
                0 0 10px #007ced,
                0 0 20px #007ced,
                0 0 20px #007ced;
}



/*for small screeen*/
@media(max-width:930px){
    nav .togglebtn{
        display: initial;
    }
    .click{
        top: 45px;
    }
    .click span{
        position: absolute;
        margin-top: 12px;
    }
    .click span:first-child{
        transform: rotate(45deg);
        top: 0;
    }
    .click span:nth-child(2){
        opacity: 0;
        margin: 0;
    }
    .click span:last-child{
        transform: rotate(45deg);
        top:0;
    }
    nav .navlinks{
        position: absolute;
        top: 110px;
        right: -100%;
        bottom: 0;
        width: 60%;
        height: 100hv;
        background-color: #222;
        z-index:3;
        box-shadow: 5px 13px 30px rgba(0, 0, 0,1);
        transition: 0.5s;
        padding: 25px 0px;
    }
    nav .navlinks li{
        display :block;
    }
    nav .navlinks li a{
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }
    nav .navlinks.open{
     right: 0;

    }
}
@media(max-width:768px){
    .container1{
        flex-direction: column;
        padding: 2rem;
    }
    .profile-text{
        padding: 40px 0px;
    }
}